const internal/strconv.digits
7 uses
internal/strconv (current package)
itoa.go#L80: const digits = "0123456789abcdefghijklmnopqrstuvwxyz"
itoa.go#L89: if base < 2 || base == 10 || base > len(digits) {
itoa.go#L110: a[i] = digits[uint(u)&m]
itoa.go#L115: a[i] = digits[uint(u)]
itoa.go#L125: a[i] = digits[uint(u-q*b)]
itoa.go#L130: a[i] = digits[uint(u)]
itoa.go#L172: return digits[i : i+1]
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |